* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body,html {
      width: 100%;
      overflow-x: hidden;
      background: #f4f4f4;
    }
    
/*------------------------------------------------Navbar section--------------------------------------*/
  .navbar {
  height: 90px;
  width: 100%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  margin-left: 30px; 
}
.logo img {
  height: 90px; 
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {

  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  color: #050505;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fb4306e1;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 40px;
}
.right-icons a {
  color: #050505;
  font-size: 20px;
  transition: 0.3s;
}
.right-icons a:hover {
  color: #fb4306e1;  
  transform: scale(1.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* mobile me center ho jaye */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    margin: 0;
  }

  /* ✅ Hide social icons on mobile */
  .right-icons {
    display: none;
  }
}


    /*---------------------------------------------Baner image section----------------------------------------------------------- */
    .hero-image {
      width: 100%;
      overflow: hidden;
    }
    
    .hero-image img {
      width: 100%;
      height: 700px; 
      object-fit: cover;
    }

/*-----------------------------------------------------About us info------------------------------------------------------------- */
           
    .about-us {
      background-color: #f9f9f9;
      padding: 60px 20px;
      color: #0d47a1;
      }
          
    .about-us .container {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      }
          
    .about-us h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #0d47a1;
  font-weight: bold;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;

  /* Animation add */
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

/* Jab viewport me aaye tab zoom effect */
.about-us h2.show {
  opacity: 1;
  transform: scale(1);
}

          .about-us p {
            max-width: 1000px;         
            margin: 0 auto 16px auto;  
            font-size: 20px;
            line-height: 1.8;
            text-align: justify;       /* Justify text within the centered block */
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #0b0c0c;
          }
          
          /* Responsive Tweaks */
          @media (max-width: 768px) {
            .about-us h2 {
              font-size: 26px;
            }
          
            .about-us p {
              font-size: 15px;
              max-width: 90%;
            }
          }

 /*-------------------------------------------vision mission section------------------------------------------ */            
/* .vision-mission-section {
  padding: 80px 10%;
  text-align: center;
  overflow-x: hidden; 
  
}

.section-heading {
  font-size: 32px;
  margin-bottom: 50px;
  color: #0d47a1;
  position: relative;
  font-family: Georgia, 'Times New Roman', Times, serif;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.section-heading.show {
  opacity: 1;
  transform: scale(1);
}

.scroll-content {
  border-left: 6px solid #ff6a00;
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.scroll-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-content h3 {
  font-size: 26px;
  color: #050505;
  margin-bottom: 15px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.scroll-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.scroll-content strong {
  color: #ff6a00;
}

.scroll-content:hover {
  transform: scale(1.02);
  transition: transform 0.4s ease;
} */


/* Section Base */
.vision-mission-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #fdfdfd, #f4f7fb);
  text-align: center;
}

/* Heading (same as pehle wali heading, only zoom effect) */
.vision-mission-heading {
  font-size: 32px; /* same size jaise pehle tha */
  margin-bottom: 50px;
  color: #ff6a00;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;

  /* Zoom animation setup */
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.vision-mission-heading.show {
  opacity: 1;
  transform: scale(1);
}

/* Cards Layout */
.vision-mission-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Card Base */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 420px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease, transform 0.8s ease;
  border-top: 6px solid #ff6a00;
  position: relative;
  overflow: hidden;

  /* Scroll Animation Start */
  opacity: 0;
  transform: translateY(60px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card Hover */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Card Icon */
.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6a00;
}

/* Card Content */
.card h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.card p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.card strong {
  color: #ff6a00;
}


/*------------------------------------------Image-Text Scroll Section------------------------------------------- */
.image-text-section {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 60px 10%;
  /* background: #f0f8ff; */
}

.image-text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.image-text-box .text {
  max-width: 700px;
  color: #0b0c0c;
  background: #f9f9ff;  /* light website-related color */
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #ff6a00; /* optional accent line */
}

.zoom-heading {
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 32px;
  color: #ff6a00;
  margin: 140px 0 40px;;
  margin-top: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.zoom-heading.visible {
  opacity: 1;
  transform: scale(1);
}



.image-grid img {
  width: 100%;
  height: auto;
  max-width: 180px;
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: transform 0.3s;
}

/* Increase height for the second image */
.image-grid div:nth-child(2) img {
  height: 220px;
  object-fit: cover;
}


.image-text-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-text-box img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-text-box .text {
  max-width: 700px;
  color: #0b0c0c;
}

.image-text-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #050505;
}

.image-text-box p {
  font-size: 18px;
  line-height: 1.6;
}

/* Animation directions */
.from-left img {
  transform: translateX(-100px);
  transition: transform 1s ease;
}
.from-left .text {
  transform: translateX(100px);
  transition: transform 1s ease;
}

.from-right img {
  transform: translateX(100px);
  transition: transform 1s ease;
}
.from-right .text {
  transform: translateX(-100px);
  transition: transform 1s ease;
}

.from-left.visible img,
.from-left.visible .text,
.from-right.visible img,
.from-right.visible .text {
  transform: translateX(0);
}

/* ---------------- Responsive Styling ---------------- */
@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }

  .scroll-content h3 {
    font-size: 22px;
  }

  .scroll-content {
    padding: 25px;
  }

  .image-text-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .image-text-box img {
    max-width: 100%;
  }

  .image-text-box .text {
    max-width: 100%;
  }

  .from-left img,
  .from-left .text,
  .from-right img,
  .from-right .text {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 24px;
  }

  .scroll-content p,
  .image-text-box p {
    font-size: 16px;
  }

  .image-text-box h2 {
    font-size: 22px;
}
}



.footer {
  margin-bottom: 20px;
  background-color: #fbeee0;
  color: #333;
  padding: 60px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #d35400;
  position: relative;
}

.footer hr {
  width: 50px;
  border: 1.5px solid #d35400;
  margin-bottom: 15px;
}

.footer p,
.footer li,
.footer a {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 6px;
}

.footer .quick-links {
  margin-left: 80px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  background-color: #e8d8c0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer .quick-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}


